WindowRows FUNCTION Action Returns an integer that is the number of interior rows in the current window. Syntax variablename% = WindowRows (handle%) Remarks The WindowRows procedure uses the following arguments. variablename% ------------- Any BASIC variable name, including the name of a record variable or record element. handle% ------- An integer that indicates the number of the window whose row count is requested. This can be any number between 1 and the value declared in the constant MAXWINDOW, inclusive. Use WindowRows when you need to determine the number of interior rows in a window. Interior rows are those where text can be displayed. The WindowRows procedure can be used when resizing windows that contain text, to ensure that you don't print more text than there are lines available to print on. See Also. WindowCols Example See the DemoWindow procedure in the code example UIDEMO.BAS for a specific implementation.